home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 072 (1988-11-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 072 (1988-11-15)(Ossowski, Stefan)(DE)(PD).adf / Pcopy / compile.doc < prev    next >
Text File  |  1988-08-14  |  797b  |  23 lines

  1.      The compiler I used was Lattice 4.00.  Because there are two
  2.      data area's (FAST and CHIP), the particular compiler switches
  3.      are given below.
  4.  
  5.               Source            LC1          LC2
  6.  
  7.               pcopy.c           -b1 -cc      -v
  8.               pc1.c             -b1 -cc      -v
  9.               fast.c            -b1 -cc 
  10.               chip.c            -b0 -cc      -cd
  11.  
  12.      I think Lattice made their C system rather complicated.  I am
  13.      familiar with assembly, so I could understand the idea's behind
  14.      the base-register.  Otherwise I doubt I would have found how to
  15.      use chip and fast memory in one module.
  16.  
  17.      The object-directory was made available under the name "objs:"
  18.      and the library-dir under "lbs:".  These names are used in the
  19.      .w file.
  20.  
  21.  
  22.  
  23.